home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 7: Sunsite
/
Linux Cubed Series 7 - Sunsite Vol 1.iso
/
system
/
shells
/
kiss-0.11
/
kiss-0
/
kiss
/
src
/
getline
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-08-15
|
245b
|
14 lines
CC = gcc
CFLAGS = -Wall -DPOSIX
LDFLAGS=
testgl: libgetline.a testgl.o
$(CC) $(LDFLAGS) $(CFLAGS) -o testgl testgl.o -L. -lgetline
libgetline.a: getline.o
ar cr libgetline.a getline.o
-ranlib libgetline.a
clean:
rm -f *.o *.a testgl